home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / SourceCode / ReadWriteStringEx / ReadWriteStringEx.wod < prev    next >
Text File  |  1996-04-20  |  543b  |  27 lines

  1. ////////////////////////
  2. //  ReadWriteString
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6. MyReadWriteString: ReadWriteString {
  7.     value = aString;
  8.     isEditable = isEditable;
  9. };
  10.  
  11. SetEditableButton: WOSubmitButton {
  12.     action = toggleEditable;
  13.     value = buttonString;
  14. };
  15.  
  16. ComponentDescription: ComponentDescription {
  17.     componentName = "ReadWriteString";
  18. };
  19.  
  20. ShowSourceControls: ShowSource {
  21.     componentName = "ReadWriteString";
  22. }; 
  23.  
  24. RCBody: WOGenericContainer {
  25.     elementName = "body";
  26.     bgcolor = WOApp.globalBackgroundColor;
  27. };